Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

script.js
Views: 194 | Author: cody
const menuToggle = document.querySelector(".toggle");
const showcase = document.querySelector(".showcase");

menuToggle.addEventListener("click", () => {
  menuToggle.classList.toggle("active");
  showcase.classList.toggle("active");
});

Comments